home *** CD-ROM | disk | FTP | other *** search
/ SGI Freeware 1998 November / Freeware November 1998.img / dist / fw_tar.idb / usr / freeware / info / tar.info-2.z / tar.info-2 (.txt)
GNU Info File  |  1998-05-21  |  48KB  |  932 lines

  1. This is Info file tar.info, produced by Makeinfo version 1.67 from the
  2. input file tar.texi.
  3. START-INFO-DIR-ENTRY
  4. * tar: (tar).            Making tape (or disk) archives.
  5. END-INFO-DIR-ENTRY
  6.    This file documents GNU `tar', a utility used to store, backup, and
  7. transport files.
  8.    Copyright (C) 1992, 1994, 1995, 1996, 1997 Free Software Foundation,
  9.    Permission is granted to make and distribute verbatim copies of this
  10. manual provided the copyright notice and this permission notice are
  11. preserved on all copies.
  12.    Permission is granted to copy and distribute modified versions of
  13. this manual under the conditions for verbatim copying, provided that
  14. the entire resulting derived work is distributed under the terms of a
  15. permission notice identical to this one.
  16.    Permission is granted to copy and distribute translations of this
  17. manual into another language, under the above conditions for modified
  18. versions, except that this permission notice may be stated in a
  19. translation approved by the Foundation.
  20.    This file documents GNU `tar', which is a utility used to store,
  21. backup, and transport files.  `tar' is a tape (or disk) archiver.  This
  22. manual documents the release 1.12.
  23. File: tar.info,  Node: extract dir,  Next: failing commands,  Prev: extracting files,  Up: extract
  24. Extracting Files that are Directories
  25. -------------------------------------
  26.    Extracting directories which are members of an archive is similar to
  27. extracting other files.  The main difference to be aware of is that if
  28. the extracted directory has the same name as any directory already in
  29. the working directory, then files in the extracted directory will be
  30. placed into the directory of the same name.  Likewise, if there are
  31. files in the pre-existing directory with the same names as the members
  32. which you extract, the files from the extracted archive will overwrite
  33. the files already in the working directory (and possible
  34. subdirectories).  This will happen regardless of whether or not the
  35. files in the working directory were more recent than those extracted.
  36.    However, if a file was stored with a directory name as part of its
  37. file name, and that directory does not exist under the working
  38. directory when the file is extracted, `tar' will create the directory.
  39.    We can demonstrate how to use `--extract' to extract a directory
  40. file with an example.  Change to the `practice' directory if you
  41. weren't there, and remove the files `folk' and `jazz'.  Then, go back
  42. to the parent directory and extract the archive `music.tar'.  You may
  43. either extract the entire archive, or you may extract only the files
  44. you just deleted.  To extract the entire archive, don't give any file
  45. names as arguments after the archive name `music.tar'.  To extract only
  46. the files you deleted, use the following command:
  47.      $ tar -xvf music.tar practice/folk practice/jazz
  48. Because you created the directory with `practice' as part of the file
  49. names of each of the files by archiving the `practice' directory as
  50. `practice', you must give `practice' as part of the file names when you
  51. extract those files from the archive.
  52. File: tar.info,  Node: failing commands,  Prev: extract dir,  Up: extract
  53. Commands That Will Fail
  54. -----------------------
  55.    Here are some sample commands you might try which will not work, and
  56. why they won't work.
  57.    If you try to use this command,
  58.      $ tar -xvf music.tar folk jazz
  59. you will get the following response:
  60.      tar: folk: Not found in archive
  61.      tar: jazz: Not found in archive
  62.      $
  63. This is because these files were not originally *in* the parent
  64. directory `..', where the archive is located; they were in the
  65. `practice' directory, and their file names reflect this:
  66.      $ tar -tvf music.tar
  67.      practice/folk
  68.      practice/jazz
  69.      practice/rock
  70. Likewise, if you try to use this command,
  71.      $ tar -tvf music.tar folk jazz
  72. you would get a similar response.  Members with those names are not in
  73. the archive.  You must use the correct member names in order to extract
  74. the files from the archive.
  75.    If you have forgotten the correct names of the files in the archive,
  76. use `tar --list --verbose' to list them correctly.
  77. File: tar.info,  Node: going further,  Prev: extract,  Up: Tutorial
  78. Going Further Ahead in this Manual
  79. ==================================
  80. File: tar.info,  Node: tar invocation,  Next: operations,  Prev: Tutorial,  Up: Top
  81. Invoking GNU `tar'
  82. ******************
  83.      *(This message will disappear, once this node revised.)*
  84.    This chapter is about how one invokes the GNU `tar' command, from
  85. the command synopsis (*note Synopsis::.).  There are numerous options,
  86. and many styles for writing them.  One mandatory option specifies the
  87. operation `tar' should perform (*note Operation Summary::.), other
  88. options are meant to detail how this operation should be performed
  89. (*note Option Summary::.).  Non-option arguments are not always
  90. interpreted the same way, depending on what the operation is.
  91.    You will find in this chapter everything about option styles and
  92. rules for writing them (*note Styles::.).  On the other hand,
  93. operations and options are fully described elsewhere, in other
  94. chapters.  Here, you will find only synthetic descriptions for
  95. operations and options, together with pointers to other parts of the
  96. `tar' manual.
  97.    Some options are so special they are fully described right in this
  98. chapter.  They have the effect of inhibiting the normal operation of
  99. `tar' or else, they globally alter the amount of feedback the user
  100. receives about what is going on.  These are the `--help' and
  101. `--version' (*note help::.), `--verbose' (`-v') (*note verbose::.) and
  102. `--interactive' (`-w') options (*note interactive::.).
  103. * Menu:
  104. * Synopsis::
  105. * using tar options::
  106. * Styles::
  107. * All Options::
  108. * help::
  109. * verbose::
  110. * interactive::
  111. File: tar.info,  Node: Synopsis,  Next: using tar options,  Prev: tar invocation,  Up: tar invocation
  112. General Synopsis of `tar'
  113. =========================
  114.    The GNU `tar' program is invoked as either one of:
  115.      tar OPTION... [NAME]...
  116.      tar LETTER... [ARGUMENT]... [OPTION]... [NAME]...
  117.    The second form is for when old options are being used.
  118.    You can use `tar' to store files in an archive, to extract them from
  119. an archive, and to do other types of archive manipulation.  The primary
  120. argument to `tar', which is called the "operation", specifies which
  121. action to take.  The other arguments to `tar' are either "options",
  122. which change the way `tar' performs an operation, or file names or
  123. archive members, which specify the files or members `tar' is to act on.
  124.    You can actually type in arguments in any order, even if in this
  125. manual the options always precede the other arguments, to make examples
  126. easier to understand.  Further, the option stating the main operation
  127. mode (the `tar' main command) is usually given first.
  128.    Each NAME in the synopsis above is interpreted as an archive member
  129. name when the main command is one of `--compare' (`--diff', `-d'),
  130. `--delete', `--extract' (`--get', `-x'), `--list' (`-t') or `--update'
  131. (`-u').  When naming archive members, you must give the exact name of
  132. the member in the archive, as it is printed by `--list' (`-t').  For
  133. `--append' (`-r') and `--create' (`-c'), these NAME arguments specify
  134. the names of either files or directory hierarchies to place in the
  135. archive.  These files or hierarchies should already exist in the file
  136. system, prior to the execution of the `tar' command.
  137.    `tar' interprets relative file names as being relative to the
  138. working directory.  `tar' will make all file names relative (by
  139. removing leading slashes when archiving or restoring files), unless you
  140. specify otherwise (using the `--absolute-names' (`-P') option).
  141. *Note absolute::, for more information about `--absolute-names' (`-P').
  142.    If you give the name of a directory as either a file name or a member
  143. name, then `tar' acts recursively on all the files and directories
  144. beneath that directory.  For example, the name `/' identifies all the
  145. files in the filesystem to `tar'.
  146.    The distinction between file names and archive member names is
  147. especially important when shell globbing is used, and sometimes a
  148. source of confusion for newcomers.  *Note Wildcards::, for more
  149. information about globbing.  The problem is that shells may only glob
  150. using existing files in the file system.  Only `tar' itself may glob on
  151. archive members, so when needed, you must ensure that wildcard
  152. characters reach `tar' without being interpreted by the shell first.
  153. Using a backslash before `*' or `?', or putting the whole argument
  154. between quotes, is usually sufficient for this.
  155.    Even if NAMEs are often specified on the command line, they can also
  156. be read from a text file in the file system, using the
  157. `--files-from=FILE-OF-NAMES' (`-T FILE-OF-NAMES') option.
  158.    If you don't use any file name arguments, `--append' (`-r'),
  159. `--delete' and `--concatenate' (`--catenate', `-A') will do nothing,
  160. while `--create' (`-c') will usually yield a diagnostic and inhibit
  161. `tar' execution.  The other operations of `tar' (`--list' (`-t'),
  162. `--extract' (`--get', `-x'), `--compare' (`--diff', `-d'), and
  163. `--update' (`-u')) will act on the entire contents of the archive.
  164.    Besides successful exits, GNU `tar' may fail for many reasons.  Some
  165. reasons correspond to bad usage, that is, when the `tar' command is
  166. improperly written.  Errors may be encountered later, while
  167. encountering an error processing the archive or the files.  Some errors
  168. are recoverable, in which case the failure is delayed until `tar' has
  169. completed all its work.  Some errors are such that it would not
  170. meaningful, or at least risky, to continue processing: `tar' then aborts
  171. processing immediately.  All abnormal exits, whether immediate or
  172. delayed, should always be clearly diagnosed on `stderr', after a line
  173. stating the nature of the error.
  174.    GNU `tar' returns only a few exit statuses.  I'm really aiming
  175. simplicity in that area, for now.  If you are not using the `--compare'
  176. (`--diff', `-d') option, zero means that everything went well, besides
  177. maybe innocuous warnings.  Nonzero means that something went wrong.
  178. Right now, as of today, "nonzero" is almost always 2, except for remote
  179. operations, where it may be 128.
  180. File: tar.info,  Node: using tar options,  Next: Styles,  Prev: Synopsis,  Up: tar invocation
  181. Using `tar' Options
  182. ===================
  183.    GNU `tar' has a total of eight operating modes which allow you to
  184. perform a variety of tasks.  You are required to choose one operating
  185. mode each time you employ the `tar' program by specifying one, and only
  186. one operation as an argument to the `tar' command (two lists of four
  187. operations each may be found at *Note frequent operations:: and *Note
  188. Operations::).  Depending on circumstances, you may also wish to
  189. customize how the chosen operating mode behaves.  For example, you may
  190. wish to change the way the output looks, or the format of the files that
  191. you wish to archive may require you to do something special in order to
  192. make the archive look right.
  193.    You can customize and control `tar''s performance by running `tar'
  194. with one or more options (such as `--verbose' (`-v'), which we used in
  195. the tutorial).  As we said in the tutorial, "options" are arguments to
  196. `tar' which are (as their name suggests) optional.  Depending on the
  197. operating mode, you may specify one or more options.  Different options
  198. will have different effects, but in general they all change details of
  199. the operation, such as archive format, archive name, or level of user
  200. interaction.  Some options make sense with all operating modes, while
  201. others are meaningful only with particular modes.  You will likely use
  202. some options frequently, while you will only use others infrequently,
  203. or not at all.  (A full list of options is available in *note All
  204. Options::..)
  205.    Note that `tar' options are case sensitive.  For example, the
  206. options `-T' and `-t' are different; the first requires an argument for
  207. stating the name of a file providing a list of NAMEs, while the second
  208. does not require an argument and is another way to write `--list'
  209. (`-t').
  210.    In addition to the eight operations, there are many options to
  211. `tar', and three different styles for writing both: long (mnemonic)
  212. form, short form, and old style.  These styles are discussed below.
  213. Both the options and the operations can be written in any of these three
  214. styles.
  215. File: tar.info,  Node: Styles,  Next: All Options,  Prev: using tar options,  Up: tar invocation
  216. The Three Option Styles
  217. =======================
  218.    There are three styles for writing operations and options to the
  219. command line invoking `tar'.  The different styles were developed at
  220. different times during the history of `tar'.  These styles will be
  221. presented below, from the most recent to the oldest.
  222.    Some options must take an argument.  (For example,
  223. `--file=ARCHIVE-NAME' (`-f ARCHIVE-NAME') takes the name of an archive
  224. file as an argument.  If you do not supply an archive file name, `tar'
  225. will use a default, but this can be confusing; thus, we recommend that
  226. you always supply a specific archive file name.)  Where you *place* the
  227. arguments generally depends on which style of options you choose.  We
  228. will detail specific information relevant to each option style in the
  229. sections on the different option styles, below.  The differences are
  230. subtle, yet can often be very important; incorrect option placement can
  231. cause you to overwrite a number of important files.  We urge you to
  232. note these differences, and only use the option style(s) which makes
  233. the most sense to you until you feel comfortable with the others.
  234. * Menu:
  235. * Mnemonic Options::            Mnemonic Option Style
  236. * Short Options::               Short Option Style
  237. * Old Options::                 Old Option Style
  238. * Mixing::                      Mixing Option Styles
  239. File: tar.info,  Node: Mnemonic Options,  Next: Short Options,  Prev: Styles,  Up: Styles
  240. Mnemonic Option Style
  241. ---------------------
  242.    Each option has at least one long (or mnemonic) name starting with
  243. two dashes in a row, e.g. `list'.  The long names are more clear than
  244. their corresponding short or old names.  It sometimes happens that a
  245. single mnemonic option has many different different names which are
  246. synonymous, such as `--compare' and `--diff'.  In addition, long option
  247. names can be given unique abbreviations.  For example, `--cre' can be
  248. used in place of `--create' because there is no other mnemonic option
  249. which begins with `cre'.  (One way to find this out is by trying it and
  250. seeing what happens; if a particular abbreviation could represent more
  251. than one option, `tar' will tell you that that abbreviation is
  252. ambiguous and you'll know that that abbreviation won't work.  You may
  253. also choose to run `tar --help' to see a list of options.  Be aware
  254. that if you run `tar' with a unique abbreviation for the long name of
  255. an option you didn't want to use, you are stuck; `tar' will perform the
  256. command as ordered.)
  257.    Mnemonic options are meant to be obvious and easy to remember, and
  258. their meanings are generally easier to discern than those of their
  259. corresponding short options (see below).  For example:
  260.      $ tar --create --verbose --blocking-factor=20 --file=/dev/rmt0
  261. gives a fairly good set of hints about what the command does, even for
  262. those not fully acquainted with `tar'.
  263.    Mnemonic options which require arguments take those arguments
  264. immediately following the option name; they are introduced by an equal
  265. sign.  For example, the `--file' option (which tells the name of the
  266. `tar' archive) is given a file such as `archive.tar' as argument by
  267. using the notation `--file=archive.tar' for the mnemonic option.
  268. File: tar.info,  Node: Short Options,  Next: Old Options,  Prev: Mnemonic Options,  Up: Styles
  269. Short Option Style
  270. ------------------
  271.    Most options also have a short option name.  Short options start with
  272. a single dash, and are followed by a single character, e.g. `-t' (which
  273. is equivalent to `--list').  The forms are absolutely identical in
  274. function; they are interchangeable.
  275.    The short option names are faster to type than long option names.
  276.    Short options which require arguments take their arguments
  277. immediately following the option, usually separated by white space.  It
  278. is also possible to stick the argument right after the short option
  279. name, using no intervening space.  For example, you might write
  280. `-f archive.tar' or `-farchive.tar' instead of using
  281. `--file=archive.tar'.  Both `--file=ARCHIVE-NAME' and `-f ARCHIVE-NAME'
  282. denote the option which indicates a specific archive, here named
  283. `archive.tar'.
  284.    Short options' letters may be clumped together, but you are not
  285. required to do this (as compared to old options; see below).  When short
  286. options are clumped as a set, use one (single) dash for them all, e.g.
  287. ``tar' -cvf'.  Only the last option in such a set is allowed to have an
  288. argument(1).
  289.    When the options are separated, the argument for each option which
  290. requires an argument directly follows that option, as is usual for Unix
  291. programs.  For example:
  292.      $ tar -c -v -b 20 -f /dev/rmt0
  293.    If you reorder short options' locations, be sure to move any
  294. arguments that belong to them.  If you do not move the arguments
  295. properly, you may end up overwriting files.
  296.    ---------- Footnotes ----------
  297.    (1)  Clustering many options, the last of which has an argument, is
  298. a rather opaque way to write options.  Some wonder if GNU `getopt'
  299. should not even be made helpful enough for considering such usages as
  300. invalid.
  301. File: tar.info,  Node: Old Options,  Next: Mixing,  Prev: Short Options,  Up: Styles
  302. Old Option Style
  303. ----------------
  304.      *(This message will disappear, once this node revised.)*
  305.    Like short options, old options are single letters.  However, old
  306. options must be written together as a single clumped set, without
  307. spaces separating them or dashes preceding them(1).  This set of
  308. letters must be the first to appear on the command line, after the
  309. `tar' program name and some whitespace; old options cannot appear
  310. anywhere else.  The letter of an old option is exactly the same letter
  311. as the corresponding short option.  For example, the old option `t' is
  312. the same as the short option `-t', and consequently, the same as the
  313. mnemonic option `--list'.  So for example, the command `tar cv'
  314. specifies the option `-v' in addition to the operation `-c'.
  315.    When options that need arguments are given together with the command,
  316. all the associated arguments follow, in the same order as the options.
  317. Thus, the example given previously could also be written in the old
  318. style as follows:
  319.      $ tar cvbf 20 /dev/rmt0
  320. Here, `20' is the argument of `-b' and `/dev/rmt0' is the argument of
  321. `-f'.
  322.    On the other hand, this old style syntax makes it difficult to match
  323. option letters with their corresponding arguments, and is often
  324. confusing.  In the command `tar cvbf 20 /dev/rmt0', for example, `20'
  325. is the argument for `-b', `/dev/rmt0' is the argument for `-f', and
  326. `-v' does not have a corresponding argument.  Even using short options
  327. like in `tar -c -v -b 20 -f /dev/rmt0' is clearer, putting all
  328. arguments next to the option they pertain to.
  329.    If you want to reorder the letters in the old option argument, be
  330. sure to reorder any corresponding argument appropriately.
  331.    This old way of writing `tar' options can surprise even experienced
  332. users.  For example, the two commands:
  333.      tar cfz archive.tar.gz file
  334.      tar -cfz archive.tar.gz file
  335. are quite different.  The first example uses `archive.tar.gz' as the
  336. value for option `f' and recognizes the option `z'.  The second
  337. example, however, uses `z' as the value for option `f'--probably not
  338. what was intended.
  339.    Old options are kept for compatibility with old versions of `tar'.
  340.    This second example could be corrected in many ways, among which the
  341. following are equivalent:
  342.      tar -czf archive.tar.gz file
  343.      tar -cf archive.tar.gz -z file
  344.      tar cf archive.tar.gz -z file
  345.    As far as we know, all `tar' programs, GNU and non-GNU, support old
  346. options.  GNU `tar' supports them not only for historical reasons, but
  347. also because many people are used to them.  For compatibility with Unix
  348. `tar', the first argument is always treated as containing command and
  349. option letters even if it doesn't start with `-'.  Thus, `tar c' is
  350. equivalent to `tar -c': both of them specify the `--create' (`-c')
  351. command to create an archive.
  352.    ---------- Footnotes ----------
  353.    (1)  Beware that if you precede options with a dash, you are
  354. announcing the short option style instead of the old option style;
  355. short options are decoded differently.
  356. File: tar.info,  Node: Mixing,  Prev: Old Options,  Up: Styles
  357. Mixing Option Styles
  358. --------------------
  359.    All three styles may be intermixed in a single `tar' command, so
  360. long as the rules for each style are fully respected(1).  Old style
  361. options and either of the modern styles of options may be mixed within
  362. a single `tar' command.  However, old style options must be introduced
  363. as the first arguments only, following the rule for old options (old
  364. options must appear directly after the `tar' command and some
  365. whitespace).  Modern options may be given only after all arguments to
  366. the old options have been collected.  If this rule is not respected, a
  367. modern option might be falsely interpreted as the value of the argument
  368. to one of the old style options.
  369.    For example, all the following commands are wholly equivalent, and
  370. illustrate the many combinations and orderings of option styles.
  371.      tar --create --file=archive.tar
  372.      tar --create -f archive.tar
  373.      tar --create -farchive.tar
  374.      tar --file=archive.tar --create
  375.      tar --file=archive.tar -c
  376.      tar -c --file=archive.tar
  377.      tar -c -f archive.tar
  378.      tar -c -farchive.tar
  379.      tar -cf archive.tar
  380.      tar -cfarchive.tar
  381.      tar -f archive.tar --create
  382.      tar -f archive.tar -c
  383.      tar -farchive.tar --create
  384.      tar -farchive.tar -c
  385.      tar c --file=archive.tar
  386.      tar c -f archive.tar
  387.      tar c -farchive.tar
  388.      tar cf archive.tar
  389.      tar f archive.tar --create
  390.      tar f archive.tar -c
  391.      tar fc archive.tar
  392.    On the other hand, the following commands are *not* equivalent to
  393. the previous set:
  394.      tar -f -c archive.tar
  395.      tar -fc archive.tar
  396.      tar -fcarchive.tar
  397.      tar -farchive.tarc
  398.      tar cfarchive.tar
  399. These last examples mean something completely different from what the
  400. user intended (judging based on the example in the previous set which
  401. uses long options, whose intent is therefore very clear).  The first
  402. four specify that the `tar' archive would be a file named `-c', `c',
  403. `carchive.tar' or `archive.tarc', respectively.  The first two examples
  404. also specify a single non-option, NAME argument having the value
  405. `archive.tar'.  The last example contains only old style option letters
  406. (repeating option `c' twice), not all of which are meaningful (eg., `.',
  407. `h', or `i'), with no argument value.
  408.    ---------- Footnotes ----------
  409.    (1)  Before GNU `tar' version 1.11.6, a bug prevented intermixing
  410. old style options with mnemonic options in some cases.
  411. File: tar.info,  Node: All Options,  Next: help,  Prev: Styles,  Up: tar invocation
  412. All `tar' Options
  413. =================
  414.    The coming manual sections contain an alphabetical listing of all
  415. `tar' operations and options, with brief descriptions and cross
  416. references to more in-depth explanations in the body of the manual.
  417. They also contain an alphabetically arranged table of the short option
  418. forms with their corresponding long option.  You can use this table as
  419. a reference for deciphering `tar' commands in scripts.
  420. * Menu:
  421. * Operation Summary::
  422. * Option Summary::
  423. * Short Option Summary::
  424. File: tar.info,  Node: Operation Summary,  Next: Option Summary,  Prev: All Options,  Up: All Options
  425. Operations
  426. ----------
  427. `--append'
  428.      Appends files to the end of the archive.  *Note append::.
  429. `--catenate'
  430.      Same as `--concatenate'.  *Note concatenate::.
  431. `--compare'
  432.      Compares archive members with their counterparts in the file
  433.      system, and reports differences in file size, mode, owner,
  434.      modification date and contents.  *Note compare::.
  435. `--concatenate'
  436.      Appends other `tar' archives to the end of the archive.  *Note
  437.      concatenate::.
  438. `--create'
  439.      Creates a new `tar' archive.  *Note create::.
  440. `--delete'
  441.      Deletes members from the archive.  Don't try this on a archive on a
  442.      tape!  *Note delete::.
  443. `--diff'
  444.      Same `--compare'.  *Note compare::.
  445. `--extract'
  446.      Extracts members from the archive into the file system.  *Note
  447.      extract::.
  448. `--get'
  449.      Same as `--extract'.   *Note extract::.
  450. `--list'
  451.      Lists the members in an archive.  *Note list::.
  452. `--update'
  453.      Adds files to the end of the archive, but only if they are newer
  454.      than their counterparts already in the archive, or if they do not
  455.      already exist in the archive.  *Note update::.
  456. File: tar.info,  Node: Option Summary,  Next: Short Option Summary,  Prev: Operation Summary,  Up: All Options
  457. `tar' Options
  458. -------------
  459. `--absolute-names'
  460.      Normally when creating an archive, `tar' strips an initial `/' from
  461.      member names.  This option disables that behavior.  .
  462. `--after-date'
  463.      (See `--newer'; .)
  464. `--atime-preserve'
  465.      Tells `tar' to preserve the access time field in a file's inode
  466.      when dumping it.  .
  467. `--backup=BACKUP-TYPE'
  468.      Rather than deleting files from the file system, `tar' will back
  469.      them up using simple or numbered backups, depending upon
  470.      BACKUP-TYPE.  .
  471. `--block-number'
  472.      With this option present, `tar' prints error messages for read
  473.      errors with the block number in the archive file.  .
  474. `--blocking-factor=BLOCKING'
  475. `-b BLOCKING'
  476.      Sets the blocking factor `tar' uses to BLOCKING x 512 bytes per
  477.      record.  .
  478. `--checkpoint'
  479.      This option directs `tar' to print periodic checkpoint messages as
  480.      it reads through the archive.  Its intended for when you want a
  481.      visual indication that `tar' is still running, but don't want to
  482.      see `--verbose' output.  .
  483. `--compress'
  484. `--uncompress'
  485.      `tar' will use the `compress' program when reading or writing the
  486.      archive.  This allows you to directly act on archives while saving
  487.      space.  .
  488. `--confirmation'
  489.      (See `--interactive';  .)
  490. `--dereference'
  491.      When creating a `tar' archive, `tar' will archive the file that a
  492.      symbolic link points to, rather than archiving the symlink.  .
  493. `--directory=DIR'
  494. `-C DIR'
  495.      When this option is specified, `tar' will change its current
  496.      directory to DIR before performing any operations.  When this
  497.      option is used during archive creation, it is order sensitive.  .
  498. `--exclude=PATTERN'
  499.      When performing operations, `tar' will skip files that match
  500.      PATTERN.  .
  501. `--exclude-from=FILE'
  502. `-X FILE'
  503.      Similar to `--exclude', except `tar' will use the list of patterns
  504.      in the file FILE.  .
  505. `--file=ARCHIVE'
  506. `-f ARCHIVE'
  507.      `tar' will use the file ARCHIVE as the `tar' archive it performs
  508.      operations on, rather than `tar''s compilation dependent default.
  509.      .
  510. `--files-from=FILE'
  511. `-T FILE'
  512.      `tar' will use the contents of FILE as a list of archive members
  513.      or files to operate on, in addition to those specified on the
  514.      command-line.  .
  515. `--force-local'
  516.      Forces `tar' to interpret the filename given to `--file' as a local
  517.      file, even if it looks like a remote tape drive name.  .
  518. `--group=GROUP'
  519.      Files added to the `tar' archive will have a group id of GROUP,
  520.      rather than the group from the source file.  GROUP is first decoded
  521.      as a group symbolic name, but if this interpretation fails, it has
  522.      to be a decimal numeric group ID.  .
  523.      Also see the comments for the `--owner=USER' option.
  524. `--gunzip'
  525.      (See `--gzip'; .)
  526. `--gzip'
  527. `--gunzip'
  528. `--ungzip'
  529.      This option tells `tar' to read or write archives through `gzip',
  530.      allowing `tar' to directly operate on several kinds of compressed
  531.      archives transparently.  .
  532. `--help'
  533.      `tar' will print out a short message summarizing the operations and
  534.      options to `tar' and exit.  .
  535. `--ignore-failed-read'
  536.      Instructs `tar' to exit successfully if it encounters an
  537.      unreadable file.  *Note Reading::.
  538. `--ignore-umask'
  539.      (See `--preserve-permissions'; *note Writing::..)
  540. `--ignore-zeros'
  541.      With this option, `tar' will ignore zeroed blocks in the archive,
  542.      which normally signals EOF.  *Note Reading::.
  543. `--incremental'
  544.      Used to inform `tar' that it is working with an  old GNU-format
  545.      incremental backup archive.  It is intended primarily for backwards
  546.      compatibility only.  .
  547. `--info-script=SCRIPT-FILE'
  548. `--new-volume-script=SCRIPT-FILE'
  549. `-F SCRIPT-FILE'
  550.      When `tar' is performing multi-tape backups, SCRIPT-FILE is run at
  551.      the end of each tape.  .
  552. `--interactive'
  553. `--confirmation'
  554.      Specifies that `tar' should ask the user for confirmation before
  555.      performing potentially destructive options, such as overwriting
  556.      files.  .
  557. `--keep-old-files'
  558.      When extracting files from an archive, `tar' will not overwrite
  559.      existing files if this option is present.  *Note Writing::.
  560. `--label=NAME'
  561. `-V NAME'
  562.      When creating an archive, instructs `tar' to write NAME as a name
  563.      record in the archive.  When extracting or listing archives, `tar'
  564.      will only operate on archives that have a label matching the
  565.      pattern specified in NAME.  .
  566. `--listed-incremental=SNAPSHOT-FILE'
  567. `-g SNAPSHOT-FILE'
  568.      During a `--create' operation, specifies that the archive that
  569.      `tar' creates is a new GNU-format incremental backup, using
  570.      SNAPSHOT-FILE to determine which files to backup.  With other
  571.      operations, informs `tar' that the archive is in incremental
  572.      format.  .
  573. `--mode=PERMISSIONS'
  574.      When adding files to an archive, `tar' will use PERMISSIONS for
  575.      the archive members, rather than the permissions from the files.
  576.      The program `chmod' and this `tar' option share the same syntax
  577.      for what PERMISSIONS might be.  *Note Permissions:
  578.      (filetutils)File permissions.  This reference also has useful
  579.      information for those not being overly familiar with the Unix
  580.      permission system.
  581.      Of course, PERMISSIONS might be plainly specified as an octal
  582.      number.  However, by using generic symbolic modifications to mode
  583.      bits, this allows more flexibility.  For example, the value `a+rw'
  584.      adds read and write permissions for everybody, while retaining
  585.      executable bits on directories or on any other file already marked
  586.      as executable.
  587. `--multi-volume'
  588.      Informs `tar' that it should create or otherwise operate on a
  589.      multi-volume `tar' archive.  .
  590. `--new-volume-script'
  591.      (see -info-script)
  592. `--newer=DATE'
  593. `--after-date=DATE'
  594.      When creating an archive, `tar' will only add files that have
  595.      changed since DATE.  .
  596. `--newer-mtime'
  597.      In conjunction with `--newer', `tar' will only add files whose
  598.      contents have changed (as opposed to just `--newer', which will
  599.      also back up files for which any status information has changed).
  600. `--no-recursion'
  601.      With this option, `tar' will not recurse into directories unless a
  602.      directory is explicitly named as an argument to `tar'.  .
  603. `--null'
  604.      When `tar' is using the `--files-from' option, this option
  605.      instructs `tar' to expect filenames terminated with `NUL', so
  606.      `tar' can correctly work with file names that contain newlines.  .
  607. `--numeric-owner'
  608.      This option will notify `tar' that it should use numeric user and
  609.      group IDs when creating a `tar' file, rather than names.  .
  610. `--old-archive'
  611.      (See `--portability'; .)
  612. `--one-file-system'
  613.      Used when creating an archive.  Prevents `tar' from recursing into
  614.      directories that are on different file systems from the current
  615.      directory.  .
  616. `--owner=USER'
  617.      Specifies that `tar' should use USER as the owner of members when
  618.      creating archives, instead of the user associated with the source
  619.      file.  USER is first decoded as a user symbolic name, but if this
  620.      interpretation fails, it has to be a decimal numeric user ID.  .
  621.      There is no value indicating a missing number, and `0' usually
  622.      means `root'.  Some people like to force `0' as the value to offer
  623.      in their distributions for the owner of files, because the `root'
  624.      user is anonymous anyway, so that might as well be the owner of
  625.      anonymous archives.
  626. `--portability'
  627. `--old-archive'
  628.      Tells `tar' to create an archive that is compatible with Unix V7
  629.      `tar'.  .
  630. `--posix'
  631.      Instructs `tar' to create a POSIX compliant `tar' archive.  .
  632. `--preserve'
  633.      Synonymous with specifying both `--preserve-permissions' and
  634.      `--same-order'.  .
  635. `--preserve-order'
  636.      (See `--same-order'; *note Reading::..)
  637. `--preserve-permissions'
  638. `--same-permissions'
  639.      When `tar' is extracting an archive, it normally subtracts the
  640.      users' umask from the permissions specified in the archive and
  641.      uses that number as the permissions to create the destination
  642.      file.  Specifying this option instructs `tar' that it should use
  643.      the permissions directly from the archive.  *Note Writing::.
  644. `--read-full-records'
  645.      Specifies that `tar' should reblock its input, for reading from
  646.      pipes on systems with buggy implementations.  *Note Reading::.
  647. `--record-size=SIZE'
  648.      Instructs `tar' to use SIZE bytes per record when accessing the
  649.      archive.  .
  650. `--recursive-unlink'
  651.      Similar to the `--unlink-first' option, removing existing
  652.      directory hierarchies before extracting directories of the same
  653.      name from the archive.  *Note Writing::.
  654. `--remove-files'
  655.      Directs `tar' to remove the source file from the file system after
  656.      appending it to an archive.  .
  657. `--rsh-command=CMD'
  658.      Notifies `tar' that is should use CMD to communicate with remote
  659.      devices.  .
  660. `--same-order'
  661. `--preserve-order'
  662.      This option is an optimization for `tar' when running on machines
  663.      with small amounts of memory.  It informs `tar' that the list of
  664.      file arguments has already been sorted to match the order of files
  665.      in the archive.  *Note Reading::.
  666. `--same-owner'
  667.      When extracting an archive, `tar' will attempt to preserve the
  668.      owner specified in the `tar' archive with this option present.  .
  669. `--same-permissions'
  670.      (See `--preserve-permissions'; *note Writing::..)
  671. `--show-omitted-dirs'
  672.      Instructs `tar' to mention directories its skipping over when
  673.      operating on a `tar' archive.  .
  674. `--sparse'
  675.      Invokes a GNU extension when adding files to an archive that
  676.      handles sparse files efficiently.  .
  677. `--starting-file=NAME'
  678. `-K NAME'
  679.      This option affects extraction only; `tar' will skip extracting
  680.      files in the archive until it finds one that matches NAME.  *Note
  681.      Scarce::.
  682. `--suffix=SUFFIX'
  683.      Alters the suffix `tar' uses when backing up files from the default
  684.      `~'.  .
  685. `--tape-length=NUM'
  686. `-L NUM'
  687.      Specifies the length of tapes that `tar' is writing as being
  688.      NUM x 1024 bytes long.  .
  689. `--to-stdout'
  690.      During extraction, `tar' will extract files to stdout rather than
  691.      to the file system.  *Note Writing::.
  692. `--totals'
  693.      Displays the total number of bytes written after creating an
  694.      archive.  .
  695. `--touch'
  696.      Sets the modification time of extracted files to the extraction
  697.      time, rather than the modification time stored in the archive.
  698.      *Note Writing::.
  699. `--uncompress'
  700.      (See `--compress'; .)
  701. `--ungzip'
  702.      (See `--gzip'; .)
  703. `--unlink-first'
  704.      Directs `tar' to remove the corresponding file from the file system
  705.      before extracting it from the archive.  *Note Writing::.
  706. `--use-compress-program=PROG'
  707.      Instructs `tar' to access the archive through PROG, which is
  708.      presumed to be a compression program of some sort.  .
  709. `--verbose'
  710.      Specifies that `tar' should be more verbose about the operations
  711.      its performing.  This option can be specified multiple times for
  712.      some operations to increase the amount of information displayed.  .
  713. `--verify'
  714.      Verifies that the archive was correctly written when creating an
  715.      archive.  .
  716. `--version'
  717.      `tar' will print an informational message about what version it is
  718.      and a copyright message, some credits, and then exit.  .
  719. `--volno-file=FILE'
  720.      Used in conjunction with `--multi-volume'.  `tar' will keep track
  721.      of which volume of a multi-volume archive its working in FILE.  .
  722. File: tar.info,  Node: Short Option Summary,  Prev: Option Summary,  Up: All Options
  723. Short Options Cross Reference
  724. -----------------------------
  725.    Here is an alphabetized list of all of the short option forms,
  726. matching them with the equivalent long option.
  727.      `--concatenate'
  728.      `--read-full-records'
  729.      `--directory'
  730.      `--info-script'
  731.      `--incremental'
  732.      `--starting-file'
  733.      `--tape-length'
  734.      `--multi-volume'
  735.      `--newer'
  736.      `--to-stdout'
  737.      `--absolute-names'
  738.      `--block-number'
  739.      `--sparse'
  740.      `--files-from'
  741.      `--unlink-first'
  742.      `--label'
  743.      `--verify'
  744.      `--exclude-from'
  745.      `--compress'
  746.      `--blocking-factor'
  747.      `--create'
  748.      `--compare'
  749.      `--file'
  750.      `--listed-incremental'
  751.      `--dereference'
  752.      `--ignore-zeros'
  753.      `--keep-old-files'
  754.      `--one-file-system'
  755.      `--touch'
  756.      `--portability'
  757.      `--preserve-permissions'
  758.      `--append'
  759.      `--same-order'
  760.      `--list'
  761.      `--update'
  762.      `--verbose'
  763.      `--interactive'
  764.      `--extract'
  765.      `--gzip'
  766. File: tar.info,  Node: help,  Next: verbose,  Prev: All Options,  Up: tar invocation
  767. GNU `tar' documentation
  768. =======================
  769.    Being careful, the first thing is really checking that you are using
  770. GNU `tar', indeed.  The `--version' option will generate a message
  771. giving confirmation that you are using GNU `tar', with the precise
  772. version of GNU `tar' you are using.  `tar' identifies itself and prints
  773. the version number to the standard output, then immediately exits
  774. successfully, without doing anything else, ignoring all other options.
  775. For example, `tar --version' might return:
  776.      tar (GNU tar) 1.12
  777. The first occurrence of `tar' in the result above is the program name
  778. in the package (for example, `rmt' is another program), while the
  779. second occurrence of `tar' is the name of the package itself,
  780. containing possibly many programs.  The package is currently named
  781. `tar', after the name of the main program it contains(1).
  782.    Another thing you might want to do is checking the spelling or
  783. meaning of some particular `tar' option, without resorting to this
  784. manual, for once you have carefully read it.  GNU `tar' has a short help
  785. feature, triggerable through the `--help' option.  By using this
  786. option, `tar' will print a usage message listing all available options
  787. on standard output, then exit successfully, without doing anything else
  788. and ignoring all other options.  Even if this is only a brief summary,
  789. it may be several screens long.  So, if you are not using some kind of
  790. scrollable window, you might prefer to use something like:
  791.      $ tar --help | less
  792. presuming, here, that you like using `less' for a pager.  Other popular
  793. pagers are `more' and `pg'.  If you know about some KEYWORD which
  794. interests you and do not want to read all the `--help' output, another
  795. common idiom is doing:
  796.      tar --help | grep KEYWORD
  797. for getting only the pertinent lines.
  798.    The perceptive reader would have noticed some contradiction in the
  799. previous paragraphs.  It is written that both `--version' and `--help'
  800. print something, and have all other options ignored.  In fact, they
  801. cannot ignore each other, and one of them has to win.  We do not
  802. specify which is stronger, here; experiment if you really wonder!
  803.    The short help output is quite succint, and you might have to get
  804. back to the full documentation for precise points.  If you are reading
  805. this paragraph, you already have the `tar' manual in some form.  This
  806. manual is available in printed form, as a kind of small book.  It may
  807. printed out of the GNU `tar' distribution, provided you have TeX
  808. already installed somewhere, and a laser printer around.  Just configure
  809. the distribution, execute the command `make dvi', then print
  810. `doc/tar.dvi' the usual way (contact your local guru to know how).  If
  811. GNU `tar' has been conveniently installed at your place, this manual is
  812. also available in interactive, hypertextual form as an Info file.  Just
  813. call `info tar' or, if you do not have the `info' program handy, use
  814. the Info reader provided within GNU Emacs, calling `tar' from the main
  815. Info menu.
  816.    There is currently no `man' page for GNU `tar'.  If you observe such
  817. a `man' page on the system you are running, either it does not long to
  818. GNU `tar', or it has not been produced by GNU.  Currently, GNU `tar'
  819. documentation is provided in Texinfo format only, if we except, of
  820. course, the short result of `tar --help'.
  821.    ---------- Footnotes ----------
  822.    (1)  There are plans to merge the `cpio' and `tar' packages into a
  823. single one which would be called `paxutils'.  So, who knows if, one of
  824. this days, the `--version' would not yield `tar (GNU paxutils) 3.2'
  825. File: tar.info,  Node: verbose,  Next: interactive,  Prev: help,  Up: tar invocation
  826. Checking `tar' progress
  827. =======================
  828.    Typically, `tar' performs most operations without reporting any
  829. information to the user except error messages.  When using `tar' with
  830. many options, particularly ones with complicated or
  831. difficult-to-predict behavior, it is possible to make serious mistakes.
  832. `tar' provides several options that make observing `tar' easier.  These
  833. options cause `tar' to print information as it progresses in its job,
  834. and you might want to use them just for being more careful about what
  835. is going on, or merely for entertaining yourself.  If you have
  836. encountered a problem when operating on an archive, however, you may
  837. need more information than just an error message in order to solve the
  838. problem.  The following options can be helpful diagnostic tools.
  839.    Normally, the `--list' (`-t') command to list an archive prints just
  840. the file names (one per line) and the other commands are silent.  When
  841. used with most operations, the `--verbose' (`-v') option causes `tar'
  842. to print the name of each file or archive member as it is processed.
  843. This and the other options which make `tar' print status information
  844. can be useful in monitoring `tar'.
  845.    With `--create' (`-c') or `--extract' (`--get', `-x'), `--verbose'
  846. (`-v') used once just prints the names of the files or members as they
  847. are processed.  Using it twice causes `tar' to print a longer listing
  848. (reminiscent of `ls -l') for each member.  Since `--list' (`-t')
  849. already prints the names of the members, `--verbose' (`-v') used once
  850. with `--list' (`-t') causes `tar' to print an `ls -l' type listing of
  851. the files in the archive.  The following examples both extract members
  852. with long list output:
  853.      $ tar --extract --file=archive.tar --verbose --verbose
  854.      $ tar xvv archive.tar
  855.    Verbose output appears on the standard output except when an archive
  856. is being written to the standard output, as with `tar --create --file=-
  857. --verbose' (`tar cfv -', or even `tar cv'--if the installer let
  858. standard output be the default archive).  In that case `tar' writes
  859. verbose output to the standard error stream.
  860.    The `--totals' option--which is only meaningful when used with
  861. `--create' (`-c')--causes `tar' to print the total amount written to
  862. the archive, after it has been fully created.
  863.    The `--checkpoint' option prints an occasional message as `tar'
  864. reads or writes the archive.  In fact, it print directory names while
  865. reading the archive.  It is designed for those who don't need the more
  866. detailed (and voluminous) output of `--block-number' (`-R'), but do
  867. want visual confirmation that `tar' is actually making forward progress.
  868.    The `--show-omitted-dirs' option, when reading an archive--with
  869. `--list' (`-t') or `--extract' (`--get', `-x'), for example--causes a
  870. message to be printed for each directory in the archive which is
  871. skipped.  This happens regardless of the reason for skipping: the
  872. directory might not have been named on the command line (implicitly or
  873. explicitly), it might be excluded by the use of the `--exclude=PATTERN'
  874. option, or some other reason.
  875.    If `--block-number' (`-R') is used, `tar' prints, along with every
  876. message it would normally produce, the block number within the archive
  877. where the message was triggered.  Also, supplementary messages are
  878. triggered when reading blocks full of NULs, or when hitting end of file
  879. on the archive.  As of now, if the archive if properly terminated with
  880. a NUL block, the reading of the file may stop before end of file is
  881. met, so the position of end of file will not usually show when
  882. `--block-number' (`-R') is used.  Note that GNU `tar' drains the
  883. archive before exiting when reading the archive from a pipe.
  884.    This option is especially useful when reading damaged archives, since
  885. it helps pinpoint the damaged sections.  It can also be used with
  886. `--list' (`-t') when listing a file-system backup tape, allowing you to
  887. choose among several backup tapes when retrieving a file later, in
  888. favor of the tape where the file appears earliest (closest to the front
  889. of the tape).  .
  890. File: tar.info,  Node: interactive,  Prev: verbose,  Up: tar invocation
  891. Asking for Confirmation During Operations
  892. =========================================
  893.    Typically, `tar' carries out a command without stopping for further
  894. instructions.  In some situations however, you may want to exclude some
  895. files and archive members from the operation (for instance if disk or
  896. storage space is tight).  You can do this by excluding certain files
  897. automatically (*note Choosing::.), or by performing an operation
  898. interactively, using the `--interactive' (`-w') option.  `tar' also
  899. accepts `--confirmation' for this option.
  900.    When the `--interactive' (`-w') option is specified, before reading,
  901. writing, or deleting files, `tar' first prints a message for each such
  902. file, telling what operation it intends to take, then asks for
  903. confirmation on the terminal.  The actions which require confirmation
  904. include adding a file to the archive, extracting a file from the
  905. archive, deleting a file from the archive, and deleting a file from
  906. disk.  To confirm the action, you must type a line of input beginning
  907. with `y'.  If your input line begins with anything other than `y',
  908. `tar' skips that file.
  909.    If `tar' is reading the archive from the standard input, `tar' opens
  910. the file `/dev/tty' to support the interactive communications.
  911.    Verbose output is normally sent to standard output, separate from
  912. other error messages.  However, if the archive is produced directly on
  913. standard output, then verbose output is mixed with errors on `stderr'.
  914. Producing the archive on standard output may be used as a way to avoid
  915. using disk space, when the archive is soon to be consumed by another
  916. process reading it, say.  Some people felt the need of producing an
  917. archive on stdout, still willing to segregate between verbose output
  918. and error output.  A possible approach would be using a named pipe to
  919. receive the archive, and having the consumer process to read from that
  920. named pipe.  This has the advantage of letting standard output free to
  921. receive verbose output, all separate from errors.
  922. File: tar.info,  Node: operations,  Next: Backups,  Prev: tar invocation,  Up: Top
  923. GNU `tar' Operations
  924. ********************
  925. * Menu:
  926. * Basic tar::
  927. * Advanced tar::
  928. * extract options::
  929. * backup::
  930. * Applications::
  931. * looking ahead::
  932.